home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gawk / gawk213s.zoo / gawk-src-2.13 / missing / gcvt.c < prev    next >
Text File  |  1991-05-06  |  130b  |  10 lines

  1. char    *
  2. gcvt(value, digits, buff)
  3. double    value;
  4. int    digits;
  5. char    *buff;
  6. {
  7.     sprintf(buff, "%.*g", digits, value);
  8.     return (buff);
  9. }
  10.